home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / foxweb_dll.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  63 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # GNU Public Licence
  5. #
  6. # References:
  7. # Date:     Fri, 05 Sep 2003 09:41:37 +0800
  8. # From:    "pokleyzz" <pokleyzz@scan-associates.net>
  9. # To:    bugtraq@securityfocus.com, vulnwatch@vulnwatch.org
  10. # Subject: [SCAN Associates Sdn Bhd Security Advisory] Foxweb 2.5 bufferoverflow in CGI and ISAPI extension
  11. #
  12.  
  13. if(description)
  14. {
  15.  script_id(11939);
  16.  script_version ("$Revision: 1.5 $");
  17.  name["english"] = "foxweb CGI";
  18.  script_name(english:name["english"]);
  19.  
  20. desc["english"] = "
  21. The foxweb.dll or foxweb.exe CGI is installed. 
  22.  
  23. Versions 2.5 and below of this CGI program have a security flaw 
  24. that lets an attacker execute arbitrary code on the remote server.
  25.  
  26. ** Since Nessus just verified the presence of the CGI but could
  27. ** not check the version number, this might be a false alarm.
  28.  
  29. Solution : remove it from /cgi-bin or upgrade it
  30.  
  31. Risk factor : High";
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Checks for the presence of foxweb.exe or foxweb.dll";
  36.  script_summary(english:summary["english"]);
  37.  script_category(ACT_GATHER_INFO);
  38.  script_copyright(english:"This script is Copyright (C) 2003 Michel Arboi");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "no404.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51. port = get_http_port(default:80);
  52.  
  53. l = make_list("foxweb.dll", "foxweb.exe");
  54. foreach cgi (l)
  55. {
  56.   res = is_cgi_installed_ka(item:cgi, port:port);
  57.   if(res)
  58.   {
  59.     security_hole(port);
  60.     exit(0);    # As we might fork, we exit here
  61.   }
  62. }
  63.